projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bfdf8c
)
* lisp/outline.el (outline-mode-cycle-map): Don't bind `tab`.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 9 Jul 2021 03:00:03 +0000
(23:00 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 9 Jul 2021 03:00:03 +0000
(23:00 -0400)
Since it would take precedence over bindings for TAB in higher
precedence maps.
lisp/outline.el
patch
|
blob
|
history
diff --git
a/lisp/outline.el
b/lisp/outline.el
index 68b8f4b6dda54c86a636794e75740a673e12b6d4..0bb74ffd64a8cf86a59812ef8006e43b50d232e3 100644
(file)
--- a/
lisp/outline.el
+++ b/
lisp/outline.el
@@
-182,7
+182,6
@@
in the file it applies to.")
;; Only takes effect if point is on a heading.
:filter ,(lambda (cmd)
(when (outline-on-heading-p) cmd)))))
- (define-key map [tab] tab-binding)
(define-key map (kbd "TAB") tab-binding)
(define-key map (kbd "<backtab>") #'outline-cycle-buffer))
map)